home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / IE3 / CLASSES.ZIP / sun / NET / WWW / HTTP / UnauthorizedHttpRequestException.class (.txt) < prev   
Encoding:
Java Class File  |  1997-03-06  |  431 b   |  15 lines

  1. package sun.net.www.http;
  2.  
  3. import java.io.IOException;
  4. import java.net.URL;
  5.  
  6. public class UnauthorizedHttpRequestException extends IOException {
  7.    public URL url;
  8.    public HttpClient http;
  9.  
  10.    public UnauthorizedHttpRequestException(URL var1, HttpClient var2) {
  11.       this.url = var1;
  12.       this.http = var2;
  13.    }
  14. }
  15.